home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941221-19950208 / 000264_news@columbia.edu_Mon Jan 23 23:17:48 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26064
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 23 Jan 1995 18:17:51 -0500
  3. Received: by apakabar.cc.columbia.edu id AA26177
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 23 Jan 1995 18:17:49 -0500
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: MS Kermit 3.14 and latin-1
  9. Date: 23 Jan 1995 23:17:48 GMT
  10. Organization: Columbia University
  11. Lines: 34
  12. Message-Id: <3g1des$phr@apakabar.cc.columbia.edu>
  13. References: <mbergD2ty3n.9qz@netcom.com>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <mbergD2ty3n.9qz@netcom.com>, Mike Berg <mike@mbrg.com> wrote:
  18. >I've been running 3.13 in Windows NT and liked it a lot. So I updated 
  19. >to the new 3.14 version thinking things would get even better (while
  20. >I wait for a native NT version).
  21. >
  22. >But I still have one problem left: I cannot get accented characters to
  23. >display correctly. I've set term bytesize 8, term character-set latin1
  24. >and code-page to cp437 (and also to cp850).  I've never had much luck
  25. >mucking with code-pages in Windows NT, but Kermit 3.13 seemed to deal
  26. >with it correctly without any help from me. So I'm wondering what's
  27. >different now, and what I have to do get latin1 to display OK -- instead
  28. >of as IBM PC-type junk.
  29. >
  30. I don't have Windows NT here, but I can verify that in Windows 3.1, Kermit
  31. displays Latin-1 characters correctly in CONNECT mode as long as you have
  32. CP850 loaded.  If NT is anything like Windows itself, then it won't allow
  33. fonts to be loaded or code pages switched in a window, so if your code
  34. page was not CP850 to start with (type "chcp" at the MS-Kermit> prompt to
  35. find out), then you won't see the right stuff.  CP437 should be "mostly"
  36. OK, but it lacks some of the Latin-1 characters (notably the Icelandic
  37. ones).
  38.  
  39. Note, by the way, that MS-DOS Kermit's "set terminal code-page" does not
  40. actually do anything as far as loading code pages is concerned.  It is
  41. simply a way to inform Kermit what the current code page actually is, so
  42. it can set up the correct translations.  This is necessary because the DOS
  43. call that asks what the current code page is tends to lie, especially if
  44. it is not CP437 or CP850.
  45.  
  46. MS-DOS Kermit 3.14 comes with a CHARSET macro that displays all the
  47. characters of the current code page.  What do you see when you type
  48. "charset" at the MS-Kermit> prompt?
  49.  
  50. - Frank